home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2011 January / SAN CD 1-2011 CD-ROM 68.iso / pc / issueMedia / Software / AviStack2 / IDL70 / help / itools.xsd < prev    next >
Encoding:
Extensible Markup Language  |  2007-11-08  |  1.4 KB  |  50 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4. $Id: //depot/idl/IDL_70/idldir/help/itools.xsd#1 $
  5.    Copyright (c) 2003-2006, ITT Visual Information Solutions. All
  6.    rights reserved. Unauthorized reproduction is prohibited.
  7. -->
  8.  
  9. <!--
  10.     xmlns is the default XMLSchema namespace.
  11.     targetNamespace is the namespace whose elements we are defining.
  12.     elementFormDefault="qualified" directs that any documents conforming
  13.         to this schema must be namespace qualified.
  14. -->
  15. <schema xmlns="http://www.w3.org/2001/XMLSchema"
  16.     targetNamespace="http://www.ittvis.com"
  17.     elementFormDefault="qualified">
  18.  
  19.   <element name="Help">
  20.     <complexType>
  21.       <sequence>
  22.  
  23.         <element name="Topic" minOccurs="0" maxOccurs="unbounded">
  24.           <complexType>
  25.             <sequence>
  26.  
  27.               <element name="Keyword" type="string" minOccurs="1" maxOccurs="unbounded" />
  28.  
  29.               <element name="Link" minOccurs="0" maxOccurs="unbounded">
  30.                 <complexType>
  31.                   <simpleContent>
  32.                     <extension base="string">
  33.                       <attribute name="type" type="string" use="required" />
  34.                       <attribute name="book" type="string" />
  35.                     </extension>
  36.                   </simpleContent>
  37.                 </complexType>
  38.               </element>
  39.  
  40.             </sequence>
  41.           </complexType>
  42.         </element>
  43.  
  44.       </sequence>
  45.     </complexType>
  46.   </element>
  47.  
  48. </schema>
  49.  
  50.